home *** CD-ROM | disk | FTP | other *** search
/ Let's Discover Louisiana / Let's Discover Louisiana.iso / pc / FILES / TIME.dxr / 00504_firstTimelineScript.ls < prev    next >
Encoding:
Text File  |  2002-12-03  |  370 b   |  22 lines

  1. global frameSpeed
  2.  
  3. on enterFrame me
  4.   sprite(64).visible = 1
  5.   frameSpeed = 2
  6.   sprite(3).visible = 0
  7.   sprite(4).visible = 0
  8. end
  9.  
  10. on exitFrame me
  11.   global direction
  12.   if direction = "right" then
  13.     go(marker("Start"))
  14.   else
  15.     if direction = "left" then
  16.       if the frameLabel <> "First" then
  17.         go(the frame - frameSpeed)
  18.       end if
  19.     end if
  20.   end if
  21. end
  22.